home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MACD 5
/
MACD 5.bin
/
workbench
/
tools
/
czesc_4
/
smallmath
/
source
/
dtst.a
< prev
next >
Wrap
Text File
|
1993-01-24
|
357b
|
33 lines
XDEF _IEEEDPTst
SECTION code
_IEEEDPTst:
tst.l d0
beq.b FirstZeroPositive
bgt.b ReturnPositive
Negative:
bclr.l #31,d0
tst.l d0
bne.b ReturnNegative
tst.l d1
beq.b ReturnZero
ReturnNegative:
moveq.l #-1,d0
rts
FirstZeroPositive:
tst.l d1
beq.b ReturnZero
ReturnPositive:
moveq.l #1,d0
rts
ReturnZero:
clr.l d0
rts
END